home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / easyweb_filemanager.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  59 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4.  
  5. if (description)
  6. {
  7.  script_id(13845);
  8.  script_bugtraq_id(10792);
  9.  script_version("$Revision: 1.5 $");
  10.  
  11.  script_name(english:"EasyWeb FileManager Directory Traversal");
  12.  desc["english"] = "
  13. The remote host is running a version of the EasyWeb FileManager module
  14. which is vulnerable to a directory traversal attack.
  15.  
  16. An attacker may use this flaw to read arbitrary files on the remote server
  17. by sending malformed requests like :
  18.  
  19. /index.php?module=ew_filemanager&type=admin&func=manager&pathext=../../file
  20.  
  21. *** This might be a false positive, since an attacker would need credentials
  22. *** to exploit this flaw
  23.  
  24. Solution : Upgrade to the latest version of this module
  25. Risk factor : High";
  26.  
  27.  script_description(english:desc["english"]);
  28.  script_summary(english:"Determines if EasyWeb FileManager is present");
  29.  script_category(ACT_GATHER_INFO);
  30.  script_family(english:"CGI abuses", francais:"Abus de CGI");
  31.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  32.  script_dependencie("http_version.nasl");
  33.  script_require_ports("Services/www", 80);
  34.  exit(0);
  35. }
  36.  
  37.  
  38. include("http_func.inc");
  39. include("http_keepalive.inc");
  40.  
  41.  
  42. port = get_http_port(default:80);
  43.  
  44. if(!get_port_state(port))exit(0);
  45. if(!can_host_php(port:port))exit(0);
  46.  
  47. foreach dir ( cgi_dirs() )
  48. {
  49.  req = http_get(item:string(dir, "/index.php?module=ew_filemanager&type=admin&func=manager"), port:port);
  50.  res = http_keepalive_send_recv(port:port, data:req);
  51.  if(res == NULL ) exit(0);
  52.  
  53.  if( egrep(pattern:"_NOAUTH", string:res) )
  54.  {
  55.         security_hole(port);
  56.     exit(0);
  57.  }
  58. }
  59.